home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 4
/
Aminet 4 - November 1994.iso
/
aminet
/
comm
/
misc
/
avmnfaxsrc1_33.lha
/
callback.h
< prev
next >
Wrap
C/C++ Source or Header
|
1994-05-25
|
424b
|
20 lines
/* $Header: pd:zvmrcs/callback.h,v 1.1 1993/04/07 18:46:56 rvillari Exp $ */
#ifndef _CALLBACK_H
#define _CALLBACK_H
#include <exec/types.h>
#include "voice.h"
/* this is an important data structure for doing callbacks with our program -- in
a cascadable fashion */
/* MAX of 5 callback functions */
struct CallBack {
ULONG signalMatch[5];
enum ReturnStatus (*functionPtr[5])(void);
int numCallBacks;
};
#endif